table的属性要怎么设呀`

来源:百度知道 编辑:UC知道 时间:2024/05/16 04:58:06
`使它的下边框定义成我需要的 怎么只能在tabel里面用`我记得以前可以在tr或td里面用的
<table border="1" height="100px" width="195px" >
<tr style="border-bottom-style:ridge;border-bottom-width:6px;border-bottom-color:blue;">
<td></td>
</tr>
<tr style="border-bottom-style:ridge;border-bottom-width:6px;border-bottom-color:blue;">
<td></td>
</tr>
</table>
下边框 border-bottom

2楼的 这样不行

什么叫下边是你想要的 你是先下边没有滚动条吧

<table border="1" height="100px" width="195px" >
<tr>
<td style="border-bottom-style:ridge;border-bottom-width:6px;border-bottom-color:blue;">a</td>
</tr>
<tr>
<td style="border-bottom-style:ridge;border-bottom-width:6px;border-bottom-color:blue;"> </td>
</tr>
</table>